Class
Example
class ClsDate{
   attributes:
     int date
     char * month
     int year
   methods:

}
class ClsEmployee{
   attributes:
     char * name
     ClsDate date_of_birth
     int social_number
   methods:
     createEmployee(data)
     deleteEmployee()
     updateEmployee(data)
}